* {
  margin: 0;
}


body {
  margin: 0;
  background-color: rgb(42, 190, 50);
  background-image: url("forest.avif");
  background-size: cover ;
  overflow: hidden; /* So scroll bar doesn't show. */
  text-align: center;
}

.simulator_main {
  display: flex;
  margin: auto;
}

#simulation_canvas {
  background: rgb(99, 99, 99);
  margin: 0 10px;
}

#data_names_canvas {
  background: rgba(41, 41, 41, .7);
}

#data_canvas {
  background: rgba(41, 41, 41, .7);
}

#simulator_interaction {
  color: rgb(127, 255, 144);
  background: rgba(41, 41, 41, .7);
  width: 300px;
  height: auto;
  padding: 20px;
  border-radius: 3px;

  display: flex;
  flex-direction: column;
  align-items: flex-end;
  align-content: space-around;
  justify-content:center;
}

#start_button {
  font-size: 3rem;
  font-weight: bold;
  cursor: pointer;
  height: 100px;
  width: 80%;
  margin: 20px;
}

#drift_button {
  cursor: pointer;
  visibility: hidden;
}

label {
  font-weight: bold;

}

.interaction_input {
  font-size: 1rem;
  font-weight: bold;
  height: 25px;
  width: 60px;
  margin: 20px;
}
